Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/90 - Guess the Number/

README.md /cody/swapnilsparsh/30DaysOfJavaScript/90 - Guess the Number/README.md
240 Views
0 Comments
# Guess My Number
A number gussing game using HTML, CSS and Javascript

# Links
Repository URL : https://github.com/IshitaBisari
index.html /cody/swapnilsparsh/30DaysOfJavaScript/90 - Guess the Number/index.html
339 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">

script.js /cody/swapnilsparsh/30DaysOfJavaScript/90 - Guess the Number/script.js
178 Views
0 Comments
`use strict`;
let secretNumber = Math.trunc(Math.random()*20) + 1;
let highScore = 0;
let score = 20;

const displayMessage = fu
style.css /cody/swapnilsparsh/30DaysOfJavaScript/90 - Guess the Number/style.css
153 Views
0 Comments
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');

* {
padding: 0;
margin: 0;
box-